Metadata-Version: 2.1
Name: Blender-Renderer
Version: 0.2.2
Summary: Render blender scenes
Home-page: https://github.com/skillor/blender-render-api
Author: skillor
Author-email: skillor@gmx.net
License: MIT
Description: # Blender Renderer Python
        
        ```bash
        pip install blender-renderer
        ```
        
        ## Basic Usage
        ```python
        from blender_renderer.renderer import Renderer
        
        renderer = Renderer('blender.exe', 'tmp')
        
        with open('scene.blend', 'rb') as f:
            scene_bytes = f.read()
        texture_names = renderer.get_texture_names(scene_bytes)
        print(texture_names)
        
        with open('texture.png', 'rb') as f:
            texture_bytes = f.read()
        
        texture_files_map = {
            'texture_name': texture_bytes,
        }
            
        img_bytes = renderer.render(
            scene_bytes,
            textures=texture_files_map,
            resolution_x=1920,
            resolution_y=1080,
        )
        ```
        
Keywords: blender,render,api
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3
Description-Content-Type: text/markdown
